翻訳と辞書
Words near each other
・ Evenus (butterfly)
・ Evenus (mythology)
・ Evenus coronata
・ Evenwood
・ Evenwood Gate
・ Evenstad
・ Evenstar
・ Evensville, Tennessee
・ Event
・ Event '76
・ Event (computing)
・ Event (particle physics)
・ Event (philosophy)
・ Event (probability theory)
・ Event (relativity)
Event (synchronization primitive)
・ Event (UML)
・ Event 2
・ Event calculus
・ Event cascade
・ Event Center Arena
・ Event chain diagram
・ Event chain methodology
・ Event chart
・ Event cinema
・ Event Cinemas
・ Event Comics
・ Event condition action
・ Event correlation
・ Event cover


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Event (synchronization primitive) : ウィキペディア英語版
Event (synchronization primitive)
In computer science, an event (also called event semaphore) is a type of synchronization mechanism that is used to indicate to waiting processes when a particular condition has become true.
An event is an abstract data type with a boolean state and the following operations:
* wait - when executed, causes the executing process to suspend until the event's state is set to true. If the state is already set to true has no effect.
* set - sets the event's state to true, release all waiting processes.
* clear - sets the event's state to false.
Different implementations of events may provide different subsets of these possible operations; for example, the implementation provided by Microsoft Windows provides the operations wait (WaitForObject and related functions), set (SetEvent), and clear (ResetEvent). An option that may be specified during creation of the event object changes the behaviour of SetEvent so that only a single thread is released and the state is automatically returned to false after that thread is released.
Events are similar in principle to the ''condition variables'' used in monitors, although the precise mechanism of use is somewhat different.
== External links ==

* (Event Objects ), ''Microsoft Developer Network''
* (Thread Synchronization Mechanisms in Python )

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Event (synchronization primitive)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.